home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / unprobas.zip / README.1ST < prev    next >
Text File  |  1986-11-01  |  322b  |  12 lines

  1. The following is a much simpler way to unprotect a BASIC 
  2. program. This works with IBM-PC BASIC, but doesn't seem to 
  3. work for GW-BASIC.
  4.  
  5. Start BASIC, then enter:
  6. DEF SEG:NEW
  7. BSAVE "UNPROT",1124,1
  8. LOAD "the protected BAS program"
  9. BLOAD "UNPROT"
  10. ... the source is now "unprotected"
  11. SAVE "the unprotected source"
  12.